body {
    font-family: 'Poppins',sans-serif;



    background: linear-gradient(135deg,#e0eafc, #cfdef3);
    text-align: center;
    padding: 50px;
}
h1 {
    color: #2c3e50;
    font-size: 25px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: auto;
}
.box {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    border-left: 8px solid #3498db;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition :all 0.4s ease;
    text-align:left;
    font-size: 17px;
    line-height: 1.5;
    color:#333;
}
.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
button {
    margin-top: 30px;
    background: linear-gradient(90deg, #3498db, #8e44ad);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
button:hover   {
    transform: scale(1.1);
    background: linear-gradient(90deg, #8e44ad, #3498db);
}
